home *** CD-ROM | disk | FTP | other *** search
/ Next Step: Mars? / Next Step Mars (1994)(IVI).iso / goddard.dir / 00103_Script_103 < prev    next >
Text File  |  1994-11-28  |  412b  |  22 lines

  1. on exitFrame
  2.   if rollover(7) then 
  3.     go to frame "b1"
  4.   else if rollover(8) then
  5.     go to frame "b2"
  6.   else if rollover(9) then
  7.     go to frame "b3"
  8.   else if rollover(10) then
  9.     go to frame "b4"
  10.   else 
  11.     go to frame "menu"
  12.   end if
  13.   
  14. end
  15.  
  16. on enterFrame
  17.   global cursor
  18.   
  19.   set the cursor of sprite 3 to 0
  20.   set the cursor of sprite 4 to 0
  21.   set the cursor of sprite 20 to pnt
  22. end